home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_02 / labrocca / sea.h < prev   
C/C++ Source or Header  |  1993-12-01  |  243b  |  18 lines

  1. /* Listing 1 */
  2. /* SEA.H */
  3. /*  Copyright 1993 by P.J. LaBrocca
  4.     All rights reserved.
  5. */
  6.  
  7. #ifndef SEA_H
  8. #define SEA_H
  9.  
  10. typedef struct header {
  11.     char filename[20];
  12.     long filesize;
  13. } HEADER;
  14.  
  15. #endif
  16.  
  17. /* End of File */
  18.